ignition accumulator - перевод на русский
Diclib.com
Словарь онлайн

ignition accumulator - перевод на русский

ARITHMETIC REGISTER
Accumulator machine; Accumulator-based architecture
  • Front panel of an [[IBM 701]] computer with lights displaying the accumulator and other registers
  • Walther WSR-16 mechanical calculator. The row of digit-wheels in the carriage (at the front), is the Accumulator.

ignition accumulator      
запальный аккумулятор
pressure accumulator         
  • [[Citroën XM]] engine bay, showing two of Citroën's distinctive green spherical accumulators, used for the [[hydropneumatic suspension system]]
  • [[Grimsby Dock Tower]]
  • Steam fire engine, with vertical copper accumulator
  • A bladder-type hydraulic accumulator. Fluid fills the internal rubber bladder which expands, compressing the air inside the sealed shell.
  • Piston accumulator
  • [[Hydraulic engine house, Bristol Harbour]]
RESERVOIR TO STORE AND STABILISE FLUID PRESSURE
Hydraulic accumulators; Pressure accumulator; Accumulator tower

общая лексика

аккумулятор давления

hydraulic accumulator         
  • [[Citroën XM]] engine bay, showing two of Citroën's distinctive green spherical accumulators, used for the [[hydropneumatic suspension system]]
  • [[Grimsby Dock Tower]]
  • Steam fire engine, with vertical copper accumulator
  • A bladder-type hydraulic accumulator. Fluid fills the internal rubber bladder which expands, compressing the air inside the sealed shell.
  • Piston accumulator
  • [[Hydraulic engine house, Bristol Harbour]]
RESERVOIR TO STORE AND STABILISE FLUID PRESSURE
Hydraulic accumulators; Pressure accumulator; Accumulator tower

общая лексика

гидравлический аккумулятор

гидроаккумулятор

Определение

accumulator
<processor> In a central processing unit, a register in which intermediate results are stored. Without an accumulator, it would be necessary to write the result of each calculation (addition, multiplication, shift, etc.) to {main memory} and read them back. Access to main memory is slower than access to the accumulator which usually has direct paths to and from the arithmetic and logic unit (ALU). The canonical example is summing a list of numbers. The accumulator is set to zero initially, each number in turn is added to the value in the accumulator and only when all numbers have been added is the result written to main memory. Modern CPUs usually have many registers, all or many of which can be used as accumulators. For this reason, the term "accumulator" is somewhat archaic. Use of it as a synonym for "register" is a fairly reliable indication that the user has been around for quite a while and/or that the architecture under discussion is quite old. The term in full is almost never used of microprocessor registers, for example, though symbolic names for arithmetic registers beginning in "A" derive from historical use of the term "accumulator" (and not, actually, from "arithmetic"). Confusingly, though, an "A" register name prefix may also stand for "address", as for example on the Motorola 680x0 family. 2. <programming> A register, memory location or variable being used for arithmetic or logic (as opposed to addressing or a loop index), especially one being used to accumulate a sum or count of many items. This use is in context of a particular routine or stretch of code. "The FOOBAZ routine uses A3 as an accumulator." [Jargon File] (1999-04-20)

Википедия

Accumulator (computing)

In a computer's central processing unit (CPU), the accumulator is a register in which intermediate arithmetic logic unit results are stored.

Without a register like an accumulator, it would be necessary to write the result of each calculation (addition, multiplication, shift, etc.) to main memory, perhaps only to be read right back again for use in the next operation.

Access to main memory is slower than access to a register like an accumulator because the technology used for the large main memory is slower (but cheaper) than that used for a register. Early electronic computer systems were often split into two groups, those with accumulators and those without.

Modern computer systems often have multiple general-purpose registers that can operate as accumulators, and the term is no longer as common as it once was. However, to simplify their design, a number of special-purpose processors still use a single accumulator.